.sort_box{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}
.sort_name{
  padding:0 20px;
  min-width:130px;
  font-size:16px;
  line-height:55px;
  color:#333!important;
  text-align:center;
  overflow:hidden;
  text-overflow:ellipsis;
  display:block;
  white-space:nowrap;
  text-decoration: none!important;
  outline:none!important;
}
.sort_list:last-child{
  margin-right:0;
}
.sort_name:hover{
  background:var(--color);
  color:#fff!important;
}
.sort_name.sort_click{
  background:var(--color);
  color:#fff!important;
}
@media(max-width:768px){
  .sort_box{
    width:100%;
    background-color:rgba(243, 242, 242, 1);
  }
  .sort_name{
    font-size:14px;
    line-height:44px;
    padding:0 10px;
    min-width:114px;
  }
}